home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2002 November / CD 1 / APC0211D1.ISO / workshop / prog / files / ActivePerl-5.6.1.633-MSWin32.msi / _dd7cf6952f16688a61ca4b605abd8e7d < prev    next >
Encoding:
Text File  |  2001-12-28  |  7.3 KB  |  230 lines

  1. package Thread;
  2. require Exporter;
  3. use XSLoader ();
  4. our($VERSION, @ISA, @EXPORT);
  5.  
  6. $VERSION = "1.0";
  7.  
  8. @ISA = qw(Exporter);
  9. @EXPORT_OK = qw(yield cond_signal cond_broadcast cond_wait async);
  10.  
  11. =head1 NAME
  12.  
  13. Thread - manipulate threads in Perl (EXPERIMENTAL, subject to change)
  14.  
  15. =head1 SUPPORTED PLATFORMS
  16.  
  17. none
  18.  
  19. =head1 CAVEAT
  20.  
  21. The Thread extension requires Perl to be built in a particular way to
  22. enable the older 5.005 threading model.  Just to confuse matters, there
  23. is an alternate threading model known as "ithreads" that does NOT
  24. support this extension.  If you are using a binary distribution such
  25. as ActivePerl that is built with ithreads support, this extension CANNOT
  26. be used.
  27.  
  28. =head1 SYNOPSIS
  29.  
  30.     use Thread;
  31.  
  32.     my $t = new Thread \&start_sub, @start_args;
  33.  
  34.     $result = $t->join;
  35.     $result = $t->eval;
  36.     $t->detach;
  37.  
  38.     if($t->equal($another_thread)) {
  39.         # ...
  40.     }
  41.  
  42.     my $tid = Thread->self->tid; 
  43.     my $tlist = Thread->list;
  44.  
  45.     lock($scalar);
  46.     yield();
  47.  
  48.     use Thread 'async';
  49.  
  50. =head1 DESCRIPTION
  51.  
  52.     WARNING: Threading is an experimental feature.  Both the interface
  53.     and implementation are subject to change drastically.  In fact, this
  54.     documentation describes the flavor of threads that was in version
  55.     5.005.  Perl 5.6.0 and later have the beginnings of support for
  56.     interpreter threads, which (when finished) is expected to be
  57.     significantly different from what is described here.  The information
  58.     contained here may therefore soon be obsolete.  Use at your own risk!
  59.  
  60. The C<Thread> module provides multithreading support for perl.
  61.  
  62. =head1 FUNCTIONS
  63.  
  64. =over 8
  65.  
  66. =item new \&start_sub
  67.  
  68. =item new \&start_sub, LIST
  69.  
  70. C<new> starts a new thread of execution in the referenced subroutine. The
  71. optional list is passed as parameters to the subroutine. Execution
  72. continues in both the subroutine and the code after the C<new> call.
  73.  
  74. C<new Thread> returns a thread object representing the newly created
  75. thread.
  76.  
  77. =item lock VARIABLE
  78.  
  79. C<lock> places a lock on a variable until the lock goes out of scope.  If
  80. the variable is locked by another thread, the C<lock> call will block until
  81. it's available. C<lock> is recursive, so multiple calls to C<lock> are
  82. safe--the variable will remain locked until the outermost lock on the
  83. variable goes out of scope.
  84.  
  85. Locks on variables only affect C<lock> calls--they do I<not> affect normal
  86. access to a variable. (Locks on subs are different, and covered in a bit)
  87. If you really, I<really> want locks to block access, then go ahead and tie
  88. them to something and manage this yourself. This is done on purpose. While
  89. managing access to variables is a good thing, perl doesn't force you out of
  90. its living room...
  91.  
  92. If a container object, such as a hash or array, is locked, all the elements
  93. of that container are not locked. For example, if a thread does a C<lock
  94. @a>, any other thread doing a C<lock($a[12])> won't block.
  95.  
  96. You may also C<lock> a sub, using C<lock &sub>. Any calls to that sub from
  97. another thread will block until the lock is released. This behaviour is not
  98. equivalent to declaring the sub with the C<locked> attribute.  The C<locked>
  99. attribute serializes access to a subroutine, but allows different threads
  100. non-simultaneous access. C<lock &sub>, on the other hand, will not allow
  101. I<any> other thread access for the duration of the lock.
  102.  
  103. Finally, C<lock> will traverse up references exactly I<one> level.
  104. C<lock(\$a)> is equivalent to C<lock($a)>, while C<lock(\\$a)> is not.
  105.  
  106. =item async BLOCK;
  107.  
  108. C<async> creates a thread to execute the block immediately following
  109. it. This block is treated as an anonymous sub, and so must have a
  110. semi-colon after the closing brace. Like C<new Thread>, C<async> returns a
  111. thread object.
  112.  
  113. =item Thread->self
  114.  
  115. The C<Thread-E<gt>self> function returns a thread object that represents
  116. the thread making the C<Thread-E<gt>self> call.
  117.  
  118. =item Thread->list
  119.  
  120. C<Thread-E<gt>list> returns a list of thread objects for all running and
  121. finished but un-C<join>ed threads.
  122.  
  123. =item cond_wait VARIABLE
  124.  
  125. The C<cond_wait> function takes a B<locked> variable as a parameter,
  126. unlocks the variable, and blocks until another thread does a C<cond_signal>
  127. or C<cond_broadcast> for that same locked variable. The variable that
  128. C<cond_wait> blocked on is relocked after the C<cond_wait> is satisfied.
  129. If there are multiple threads C<cond_wait>ing on the same variable, all but
  130. one will reblock waiting to reaquire the lock on the variable. (So if
  131. you're only using C<cond_wait> for synchronization, give up the lock as
  132. soon as possible)
  133.  
  134. =item cond_signal VARIABLE
  135.  
  136. The C<cond_signal> function takes a locked variable as a parameter and
  137. unblocks one thread that's C<cond_wait>ing on that variable. If more than
  138. one thread is blocked in a C<cond_wait> on that variable, only one (and
  139. which one is indeterminate) will be unblocked.
  140.  
  141. If there are no threads blocked in a C<cond_wait> on the variable, the
  142. signal is discarded.
  143.  
  144. =item cond_broadcast VARIABLE
  145.  
  146. The C<cond_broadcast> function works similarly to C<cond_signal>.
  147. C<cond_broadcast>, though, will unblock B<all> the threads that are blocked
  148. in a C<cond_wait> on the locked variable, rather than only one.
  149.  
  150. =item yield
  151.  
  152. The C<yield> function allows another thread to take control of the
  153. CPU. The exact results are implementation-dependent.
  154.  
  155. =back
  156.  
  157. =head1 METHODS
  158.  
  159. =over 8
  160.  
  161. =item join
  162.  
  163. C<join> waits for a thread to end and returns any values the thread exited
  164. with. C<join> will block until the thread has ended, though it won't block
  165. if the thread has already terminated.
  166.  
  167. If the thread being C<join>ed C<die>d, the error it died with will be
  168. returned at this time. If you don't want the thread performing the C<join>
  169. to die as well, you should either wrap the C<join> in an C<eval> or use the
  170. C<eval> thread method instead of C<join>.
  171.  
  172. =item eval
  173.  
  174. The C<eval> method wraps an C<eval> around a C<join>, and so waits for a
  175. thread to exit, passing along any values the thread might have returned.
  176. Errors, of course, get placed into C<$@>.
  177.  
  178. =item detach
  179.  
  180. C<detach> tells a thread that it is never going to be joined i.e.
  181. that all traces of its existence can be removed once it stops running.
  182. Errors in detached threads will not be visible anywhere - if you want
  183. to catch them, you should use $SIG{__DIE__} or something like that.
  184.  
  185. =item equal 
  186.  
  187. C<equal> tests whether two thread objects represent the same thread and
  188. returns true if they do.
  189.  
  190. =item tid
  191.  
  192. The C<tid> method returns the tid of a thread. The tid is a monotonically
  193. increasing integer assigned when a thread is created. The main thread of a
  194. program will have a tid of zero, while subsequent threads will have tids
  195. assigned starting with one.
  196.  
  197. =back
  198.  
  199. =head1 LIMITATIONS
  200.  
  201. The sequence number used to assign tids is a simple integer, and no
  202. checking is done to make sure the tid isn't currently in use. If a program
  203. creates more than 2^32 - 1 threads in a single run, threads may be assigned
  204. duplicate tids. This limitation may be lifted in a future version of Perl.
  205.  
  206. =head1 SEE ALSO
  207.  
  208. L<attributes>, L<Thread::Queue>, L<Thread::Semaphore>, L<Thread::Specific>.
  209.  
  210. =cut
  211.  
  212. #
  213. # Methods
  214. #
  215.  
  216. #
  217. # Exported functions
  218. #
  219. sub async (&) {
  220.     return new Thread $_[0];
  221. }
  222.  
  223. sub eval {
  224.     return eval { shift->join; };
  225. }
  226.  
  227. XSLoader::load 'Thread';
  228.  
  229. 1;
  230.